home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 551-575 / disk_556 / scheme2c / scheme-doc.lzh / cdecl / makefile < prev    next >
Makefile  |  1991-10-11  |  264b  |  14 lines

  1. .SUFFIXES:
  2. .SUFFIXES: .sc .c
  3.  
  4. .sc.c:
  5.     scc -C $*.sc
  6.  
  7. cdecl:    cdecl.c const.c extern.c typedef.c
  8.     scc -o cdecl cdecl.c const.c extern.c typedef.c
  9.  
  10. install-src:
  11.     for x in *.c *.sc makefile README document; \
  12.        do install -c $$x /wrl/Gen/src/schemetoc/cdecl; \
  13.     done
  14.